home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 1: #1 / CCCC 8804 Volume 1 Number 1 - Alde.iso / C / MISC / TUTOR / ELEMC.ARC / CLS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-05-17  |  256 b   |  14 lines

  1. #include <dos.h>
  2. cls()
  3. {
  4.  
  5.     union REGS REG;
  6.  
  7.     REG.x.ax=0x0600;
  8.     REG.h.bh=0x07;
  9.     REG.x.cx=0X0000;
  10.     REG.x.dx=0x184f;
  11.     int86(0x10,®,®);
  12.  
  13. }